home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Vox.h < prev   
Encoding:
C/C++ Source or Header  |  2002-10-10  |  996 b   |  31 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef VoxH
  3. #define VoxH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TfrmVox : public TForm
  17. {
  18. __published:
  19.     TButton *OKBtn;
  20.     TButton *CancelBtn;
  21.     TRadioGroup *rgFrequency;
  22.     void __fastcall OKBtnClick(TObject *Sender);
  23. private:
  24. public:
  25.     virtual __fastcall TfrmVox(TComponent* AOwner);
  26. };
  27. //----------------------------------------------------------------------------
  28. extern PACKAGE TfrmVox *frmVox;
  29. //----------------------------------------------------------------------------
  30. #endif    
  31.